home *** CD-ROM | disk | FTP | other *** search
Java Source | 1998-05-24 | 491 b | 24 lines |
-
-
- public class Application1 {
- boolean packFrame = false;
-
- //Construct the application
- public Application1() {
- Frame1 frame = new Frame1();
- //Pack frames that have useful preferred size info, e.g. from their layout
- //Validate frames that have preset sizes
- if (packFrame)
- frame.pack();
- else
- frame.validate();
- frame.setVisible(true);
- }
-
- //Main method
- static public void main(String[] args) {
- new Application1();
- }
- }
-
-